home *** CD-ROM | disk | FTP | other *** search
/ Gold Medal Software 1 / Gold Medal Software Volume 1 (Gold Medal) (1994).iso / prog / mysteryc.arj / EXH21.C < prev    next >
Encoding:
C/C++ Source or Header  |  1993-07-01  |  151 b   |  12 lines

  1. #include <stdio.h>
  2. main()
  3. {
  4. functiona();
  5. printf("A function sandwich\n");
  6. functiona();
  7. }
  8. functiona()
  9. {
  10.  printf("This is a function\n");
  11.  }
  12.